Skip to main content
Glama

Superglue MCP

Official
by superglue-ai
page.tsx1.14 kB
'use client' import { ApiPlayground } from "@/src/components/api/ApiPlayground"; import { Button } from "@/src/components/ui/button"; import { ArrowLeft } from "lucide-react"; import { useParams, useRouter } from "next/navigation"; export default function ApiPlaygroundPage({ configId }: { configId?: string }) { const params = useParams(); const id = configId || params.id as string; const router = useRouter(); return ( <div className="mx-auto"> <div className="lg:p-6"> <div className="flex justify-between items-stretch my-4"> <Button variant="ghost" onClick={() => router.push('/configs')} > <ArrowLeft className="mr-2 h-4 w-4" /> Back </Button> <Button onClick={() => window.location.href = `/configs/${id}/edit`} size="lg" variant="outline" className="gap-2 mr-6" > Edit Config </Button> </div> <div className="max-w-full lg:-mx-6"> <ApiPlayground configId={id} /> </div> </div> </div> ); }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/superglue-ai/superglue'

If you have feedback or need assistance with the MCP directory API, please join our Discord server